@charset "utf-8";
/* ====================公共样式========================= */

/* 头部 */
.zdHead {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 50px;
	box-sizing: border-box;
	z-index: 99;
	transition: all 0.28s;
}

.zdHead_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zdHead_logo {

	transition: all 0.48s;
}

.zdHead_logo a {
	display: block;
}

.zdHead_logo img {
	max-width: 100%;
	height: 34px;
}

.zdHead_logo_c {
	display: none;
}

.zdHead_nav li {
	position: relative;
	display: inline-block;
	padding: 0 0.38rem;
}

.zdHead_nav a {
	line-height: 68px;
	color: #fff;
	font-size: 18px;
	/* opacity: .8; */
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
	transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.zdHead_nav li .sub {
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	background: #fff;
	border-radius: 6px;
	min-width: 189px;
	padding: 10px 0 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.48s;
	z-index: -1;
}

.zdHead_nav li:last-child .sub {
	left: auto;
	transform: translateX(0);
	right: 0;
}

.zdHead_nav li:hover .sub {
	opacity: 1;
	visibility: inherit;
	z-index: 999;
	top: 68px;
}

.zdHead_nav li .sub a {
	color: #333;
	display: block;
	opacity: 1;
	text-align: center;
	font-size: 14px !important;
	border-bottom: 1px solid #eee;
	line-height: 2;
	padding: 10px 0;
}

.zdHead_nav li .sub a:last-child {
	border-bottom: 0;
}

.zdHead_nav li .sub a:hover {
	color: #e62129;
}

.zdHead_nav a:hover {
	opacity: 1;
}

.zdHead.bg,
.zdHead.on,.c-open .zdHead{
	padding: 16px 50px;
	background: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.zdHead.bg .zdHead_logo img,
.zdHead.on .zdHead_logo img{
	height: 34px;
}

.zdHead.bg .zdHead_logo_c,
.zdHead.on .zdHead_logo_c,.c-open .zdHead_logo_c{
	display: block;
}

.zdHead.bg .zdHead_logo_w,
.zdHead.on .zdHead_logo_w,.c-open .zdHead_logo_w{
	display: none;
}

.zdHead.bg .zdHead_nav a,
.zdHead.on .zdHead_nav a {
	color: #333;
	opacity: 1;
}

.zdHead.bg .zdHead_nav a:hover,
.zdHead.on .zdHead_nav a:hover {
	color: #e62129;
}

.zdHead.bg .zdHead_nav .hover,
.zdHead.on .zdHead_nav .hover {
	color: #e62129;
}


.zdHead .nav_r {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 25px;
}

.zdHead .language {
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	padding-left: 0.18rem;
}

.zdHead .language::before {
	position: absolute;
	content: "";
	width: 2px;
	height: 100%;
	left: 0;
	top: 0;
	margin-left: -0.5px;
	background-color: #fff;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language>a {
	position: relative;
	color: white;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.zdHead .language>a:after {
	display: inline-block;
	margin-left: 5px;
	content: "\f0d7";
	font-size: 12px;
	font-family: 'fontawesome';
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .language.on>a:after {
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

.zdHead .language>a img {
	width: auto;
	height: 30px;
	margin-right: 0.1rem;
}

.zdHead .language div {
	display: none;
	position: absolute;
	z-index: 2;
	left: 5px;
	top: calc(100% + 20px);
	width: 100%;
	height: auto;
	background: rgba(0, 0, 0, .8);
	text-align: left;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on .language div {
	top: calc(100% + 35px);
}


.zdHead .language div a {
	display: block;
	font-size: 16px;
	padding: 10px 15px;
	color: rgba(255, 255, 255, .8);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	letter-spacing: 0.5px;
}

.zdHead .language div a:hover {
	background-color: #e62129;
	color: white;
}

.zdHead .search {
	position: relative;
	margin-right: 0.18rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}

.zdHead .search a {
	display: block;
}

.zdHead .search a img {
	height: 28px;
}

#formsearh {
	position: absolute;
	z-index: 3;
	top: calc(100% + 20px);
	right: -20px;
	width: 320px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 2px;
	overflow: hidden;
	display: none;
	border: 1px solid #e62129;
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	-ms-transition: top 0.3s;
	-o-transition: top 0.3s;
	transition: top 0.3s;
}

.zdHead.on #formsearh {
	top: calc(100% + 36px);
}

#formsearh input[type="text"] {
	float: left;
	font-size: 16px;
	height: 42px;
	line-height: 42px;
	padding-left: 15px;
	width: 80%;
	border: none;
	background-color: transparent;
	color: #333;
	box-sizing: border-box;
	overflow: hidden;
}

#formsearh input::-webkit-input-placeholder,
#formsearh textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .5);
	color: #333;
}

#formsearh button {
	float: right;
	width: 20%;
	height: 42px;
	border: none;
	background: url(../images/icon-search-w.png) no-repeat center center;
	background-size: auto 50%;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, .2);
	cursor: pointer;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #e62129;
}

.zdHead.on .language>a {
	color: #333;
}

.zdHead.on .language::before {
	background-color: #333;
}

.zdHead .nav_r img.black,
.zdHead.on .nav_r img {
	display: none;
}

.zdHead.on .nav_r img.black {
	display: block;
}



/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 50px;
  background: #fff;
  overflow-y: auto;
  transition: all 0.5s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 20px;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 4%;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 16px;
}
#c-header .c-nav2 li i {
  font-size: 20px;
  color: #333;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#c-header .c-nav2 li .c-title-box.on i{
	transform: rotate(180deg);
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #b81b2c;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 60px);
}


/*顶部导航开关*/
#c-header .c-switch {
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: relative;
  display: block;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  margin: 6px 0;
}
#c-header.on .c-switch i {
  background: #333;
}
.c-open #c-header .c-switch i{
	background: #000000;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



/* tc_search s */
.tc_search{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10001;
	pointer-events: none;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.tc_search.act {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    display: block;
    pointer-events: auto;
}
.tc_search form{
	width: 9.6rem;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: 2px solid #eee;
	height: 0.7rem;
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.tc_search input{
	width: 80%;
	height: 0.7rem;
	font-size: 0.34rem;
	color: #c1c1c1;
	box-shadow: none;
	-webkit-appearance: none;
	float: left;
	border-right: 0;
	background: none;
}
.tc_search input::placeholder{
	color: #c1c1c1;
}
.tc_search button{
	max-width: 20%;
	width: 0.7rem;
	height: 0.7rem;
	border: 0;
	line-height: 0.7rem;
	color: #c1c1c1;
	cursor: pointer;
	text-transform: uppercase;
	float: right;
	font-size: 0.48rem;
	background-color: transparent;
	background: url('../images/icon-search-w.png') no-repeat center;
}
.tc_search .search_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	z-index: 0;
}
/* tc_search e */



/* 底部 */
.Footer-wrapper{}
.Footer-container{
	background-color: #f1f1f1;
	padding: 0.8rem 0 0.6rem;
}
.Footer-container .fl{
	width: 25%;
	
}
.Footer-container .fl .foot_logo{}
.Footer-container .fl .foot_logo img{}
.Footer-container .fl .txt{
	margin-top: 0.3rem;
}
.Footer-container .fl .txt p{
	position: relative;
	color: #000000;
	font-size: 14px;
	line-height: 24px;
	padding-left: 30px;
	margin-top: 15px;
}
.Footer-container .fl .txt p:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

.Footer-container .fl .txt p:nth-child(1):after {
    background: url(../images/foot_address.png) no-repeat center/100%;
    width: 12px;
    height: 23px;
}
.Footer-container .fl .txt p:nth-child(2):after {
    background: url(../images/foot_phone.png) no-repeat center/100%;
    width: 20px;
    height: 20px;
}
.Footer-container .fl .txt p:nth-child(3):after {
    background: url(../images/foot_fax.png) no-repeat center/100%;
    width: 22px;
    height: 22px;
}
.Footer-container .fl .txt p:nth-child(4):after {
    background: url(../images/foot_phone.png) no-repeat center/100%;
    width: 20px;
    height: 20px;
}
.Footer-container .fl .f_select{
	width: 80%;
	height: 40px;
	margin-top: 0.2rem;
	position: relative;
	cursor: pointer;
}
.Footer-container .fl .f_select .note{
	color: #787878;
	background: url(../images/sanjiao.png) no-repeat 94% center;
	font-size: 16px;
	line-height: 38px;
	padding-left: 25px;
	border: solid 1px #787878;
}
.Footer-container .fl .f_select .f_xl{
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	border: solid 1px rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.8);
	/* height: 150px; */
	overflow-y: auto;
	display: none;
}
.Footer-container .fl .f_select .f_xl a{
	display: block;
	padding-left: 25px;
	color: #333;
	font-size: 14px;
	line-height: 40px;
}
.Footer-container .fl .f_select .f_xl a:hover{
	background-color: #e62129;
	color: white;
}

.Footer-container .fr{
	width: 75%;
}
.Footer-container .fr .foot_nav_item{
	float: left;
	width: 80%;
}
.Footer-container .fr .foot_nav_item ul{}
.Footer-container .fr .foot_nav_item ul li{}
.Footer-container .fr .foot_nav_item ul li .foot_menu{
	color: #2a2a2a;
	margin-bottom: 0.2rem;
	font-size: 16px;
	font-weight: bold;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop{}
.Footer-container .fr .foot_nav_item ul li .foot_drop a{
	display: block;
	font-size: 14px;
	color: #656565;
	margin-bottom: 0.15rem;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop a:hover{
	color: #e62129;
}
.Footer-container .fr .foot_nav_item ul li .foot_drop a:last-child{
	margin-bottom: 0;
}

.Footer-container .fr .foot_wx{
	float: right;
	width: 20%;
}
.Footer-container .fr .foot_wx .top{}
.Footer-container .fr .foot_wx .top img{
	width: 160px;
}
.Footer-container .fr .foot_wx .top p{
	text-align: center;
	font-size: 16px;
	color: #2a2a2a;
	margin-top: 0.15rem;
}
.Footer-container .fr .foot_wx .bot{
	margin-top: 0.2rem;
	width: 100%;
}
.Footer-container .fr .foot_wx .bot ul{
	text-align: center;
	font-size: 0;
}
.Footer-container .fr .foot_wx .bot ul li{
	display: inline-block;
	margin-right: 10px;
}
.Footer-container .fr .foot_wx .bot ul li a{
	display: inline-block;
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	border-radius: 50%;
	background-color: #bdbdbd;
}
.Footer-container .fr .foot_wx .bot ul li a img{
	display: inline-block;
}
.Footer-container .fr .foot_wx .bot ul li:last-child{
	margin-right: 0;
}

.Footer-copyright{
	text-align: center;
	background-color: #464646;
	padding: 0.3rem 0;
	font-size: 14px;
	line-height: 1.5;
	color: white;
}
.Footer-copyright a{
	margin-left: 5px;
	color: white;
}
/* 中间+共用部分 */

/* 首页more */
.ind_more{
	display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-align: center;-webkit-align-items: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: center;-webkit-justify-content: center;-ms-flex-pack: center;justify-content: center;
	height: 50px;
	font-size: 18px;
	color: #ffffff;
	border-radius: 25px;
	width: 180px;
	background-color: #e62129;
	margin: 0 auto;
	font-weight: normal;
}
.ind_more img{
	margin-left: 0.12rem;
}


/* 首页标题 */

.ind_tit{
	overflow: hidden;
}
.ind_tit .fl{
	position: relative;
	padding-left: 0.25rem;
}
.ind_tit .fl:before{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background-color: #e62129;
}
.ind_tit p{
	color: #333333;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 0.3rem;
	font-family: 'Microsoft YaHei Light', 'Microsoft YaHei';
}
.ind_tit h3{
	color: #e62129;
	margin-top: 10px;
	font-size: 0.36rem;
	font-weight: bold;
	font-family: 'Microsoft YaHei Light', 'Microsoft YaHei';
}

.ind_tit ul{}
.ind_tit ul li{}
.ind_tit ul li a{
	position: relative;
	padding: 0 0.3rem;
	font-size: 20px;
	color: #262626;
	line-height: 1;
	
}
.ind_tit ul li.active a,.ind_tit ul li:hover a{
	color: #e62129;
}
.ind_tit ul li a::after{
	position: absolute;
	content: "";
	right: 0;
	top: 5%;
	height: 90%;
	width: 2px;
	background-color: #262626;
}
.ind_tit ul li:last-child a{
	padding-right: 0;
}
.ind_tit ul li:last-child a::after{
	display: none;
}


/* ind_banner */
.ind_banner .swiper-pagination-bullet{
	background-color: white;
	opacity: 1;
}
.ind_banner .swiper-pagination-bullet-active{
	background-color: #e62129;
}


/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900/1024/1200) */
}

@media all and (max-width:1599px) {
    /* 1440 × (900/1050) */
	.zdHead_nav li{
		padding: 0 0.25rem;
	}
}

@media all and (max-width:1439px) {
    /* 1360 × (768) */
	.zdHead_nav a{
		font-size: 16px;
	}
	
}

@media all and (max-width:1359px) {
    /* 1280 × (800/854/1024) */
}

@media all and (max-width:1279px) {
    /* 1152 × (864) */
	.zdHead,.zdHead.bg, .zdHead.on{
		padding: 25px 4%;
	}
	.zdHead_logo img{
		height: 25px !important;
	}
	.zdHead_nav a{
		line-height: 40px;
	}
}

@media all and (max-width:1151px) {
    /* 1024 × (600/768) */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
	.pc{display: none;}
	.mb{display: block;}
	
	.zdHead, .zdHead.bg, .zdHead.on{
		padding: 20px 4% !important;
	}
	.zdHead_logo img{
		height: 18px !important;
	}
	.head_r .zdHead_nav{
		display: none;
	}
	#c-header .c-switch {
	    display: block;
	}
	.zdHead .search{
		margin-right: 0.3rem;
		display: none;
	}
	.zdHead .search a img{
		height: 24px;
	}
	.zdHead .nav_r{
		margin-left: 0;
	}
	
	.ind_more{
		font-size: 16px;
		height: 45px;
	}
}

@media all and (max-width:768px) {
	
}

@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
	.Footer-copyright{
		font-size: 13px;
	}
}

@media all and (max-width:480px) {
	
}

@media all and (max-width:420px) {
	
}

@media all and (max-width:376px) {
	
}